plan
Financial plan for the user
GraphQL Schema
extend type query {
"""Financial plan for the user"""
plan(userId: ID!): Plan!
}
Arguments
| Name | Type | Description |
|---|---|---|
| userId | ID! | Unique ID of the user |
Response Shape
This query returns Plan!
| Name | Type | Description |
|---|---|---|
| id | ID! | UUID for the plan |
| lastUpdated | Date | When the plan was last regenerated |
| suitabilityReportLink | String | Suitability report related to the plan, if available |
| recommendationGroups | [RecommendationGroup!] | |
| monthlyAllocationAmount | Money | |
| authorisationStatus | AuthorisationStatus | |
| factfindErrors | FactfindErrors | |
| triageReason | String | |
| advisorPhoto | Base64ImageString | Base64 encoded image of advisor |